home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / Fight / fightingschool.swf / scripts / DefineSprite_156 / frame_1 / PlaceObject2_153_13 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2006-06-09  |  997b  |  44 lines

  1. onClipEvent(enterFrame){
  2.    this._xscale = int(_root.b1.hp / 100 * 100);
  3.    if(_root.b1.hp >= 90 and 100 >= _root.b1.hp)
  4.    {
  5.       clr.setRGB(255);
  6.    }
  7.    else if(_root.b1.hp >= 80 and _root.b1.hp < 90)
  8.    {
  9.       clr.setRGB(3342591);
  10.    }
  11.    else if(_root.b1.hp >= 70 and _root.b1.hp < 80)
  12.    {
  13.       clr.setRGB(6684927);
  14.    }
  15.    else if(_root.b1.hp >= 60 and _root.b1.hp < 70)
  16.    {
  17.       clr.setRGB(10027263);
  18.    }
  19.    else if(_root.b1.hp >= 50 and _root.b1.hp < 60)
  20.    {
  21.       clr.setRGB(10027161);
  22.    }
  23.    else if(_root.b1.hp >= 40 and _root.b1.hp < 50)
  24.    {
  25.       clr.setRGB(16711833);
  26.    }
  27.    else if(_root.b1.hp >= 30 and _root.b1.hp < 40)
  28.    {
  29.       clr.setRGB(16711782);
  30.    }
  31.    else if(_root.b1.hp >= 20 and _root.b1.hp < 30)
  32.    {
  33.       clr.setRGB(16711731);
  34.    }
  35.    else if(_root.b1.hp >= 10 and _root.b1.hp < 20)
  36.    {
  37.       clr.setRGB(16711680);
  38.    }
  39.    else if(_root.b1.hp >= 0 and _root.b1.hp < 10)
  40.    {
  41.       clr.setRGB(16711680);
  42.    }
  43. }
  44.